找传奇、传世资源到传世资源站!

pygame画弧

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

pygame画弧
from clipboard
import mathimport pygame
from pygame.locals import *
pygame.init()
screen=pygame.display.set_mode((600,500))
pygame.display.set_caption("Drowing Arcs")
while True:
    for event in pygame.event.get():
        if event.type in (QUIT,KEYDOWN):
            sys.exit()
    screen.fill((0,0,200))        
    #Draw the arc
    color = 255,0,255
    position=200,150,200,200
    start_angle=math.radians(0)
    end_angle=math.radians(180)
    width = 8
    pygame.draw.arc(screen,color,position,start_angle,end_angle,width)
    pygame.display.update()

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复